body {
    font-size: 15px;
    font-family: sf pro text,sf pro icons,apple webexp icons custom,helvetica neue,Helvetica,Arial,sans-serif;
}
img {
    border-radius: 15px;
    width: 100px;
    height: auto;
}
a {
    text-decoration: none;
    color: #000;
}
.MainDiv {
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 100px;
    margin-bottom: 5%;
}
@media (max-width: 960px){
    .MainDiv {
        margin-left: 5%;
        margin-right: 5%;
    }
}
.Appbox {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    grid-gap: 20px;
    margin-top: 20px;
}
.AppDiv {
    -webkit-box-shadow: 5px 5px 20px 8px rgba(199,199,199,0.1);
    -moz-box-shadow: 5px 5px 20px 8px rgba(199,199,199,0.1);
    box-shadow: 5px 5px 20px 8px rgba(199,199,199,0.1);
    border-radius: 15px;
    padding: 15px;
    position: relative;
}
.AppInformation {
    margin: 0;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 20px;
}
.AppMoreInformation {
    margin-top: 8px;
    font-size: 12px;
    color: #636366;
    line-height: 1.2;
    padding-left: 15px !important;
}
.AppMoreInformation span {
    display: inline-block;
}
.AppMoreInformation a {
    text-decoration: underline;
}
.ViewUrl {
    position: absolute;
    bottom: 0;
    margin: 15px 0;
    font-size: 14px;
    background: #28d094;
    color: #FFF!important;
    text-align: center;
    padding: 4px 10px;
    border-radius: 8px;
    text-decoration: none;
}
.AppName {
    overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      margin-bottom: 8px;
}
.AppPrice {
    /*color: #636366;*/
}

@media screen and (min-width:1200px) and (max-width:1400px){
    .Appbox {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
}
@media screen and (min-width:960px) and (max-width:1200px){
    .Appbox {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}
@media (max-width: 960px){
    .Appbox {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .Appbox a{
        font-size: 12px;
    }
}

/* 搜索部分样式 */
.search-form {
      display: flex; /* 启用flex布局 */
      justify-content: space-between; /* 子元素平均分配空间 */
      max-width: 60%;
      grid-gap: 5px;
      line-height: 28px;
}
.search-form > * {
      flex: none; /* 默认值，子元素不伸缩 */
      height: 28px;
      box-sizing: border-box;
}
.search-form > :first-child {
      width: 30%; /* 第一个子元素宽度 */
}
.search-form > :nth-child(2) {
      width: 50%; /* 第二个子元素宽度 */
}
.search-form > :nth-child(3) {
      width: 20%; /* 第三个子元素宽度 */
}
.search-input {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    border: 1px solid #ffffff00;
    border-radius: 4px;
}
.appName-input {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding-left: 8px;
}

@media only screen and (max-width: 960px) {
	form {
		flex-direction: column;
	}
	.search-form {
	    max-width: 100%;
	    grid-gap: 8px;
	}
	.search-form > :first-child {
        width: 100%;
    }
    .search-form > :nth-child(2) {
        width: 100%;
    }
    .search-form > :nth-child(3) {
        width: 35%;
    }
}